/* CSS for the https://nepa.navy.afpims.mil/nwtteis/ website */

/* Overide Theme */
a {
    text-decoration: underline !important;
}

/* Override 1 linespacing */
p,li {
  line-height: 1.5;
}

/** Button on homepage **/
.nwtteis-button-box {
border: 1px solid #e0e0e0; /* A thin, light gray border */
border-radius: 15px;      /* Keeps the rounded corners */
padding: 25px;            /* Spacing inside the box */
max-width: 400px;         /* Sets a maximum width for the box */
margin: 20px auto;        /* Centers the box on the page */
text-align: center;       /* Centers all the content inside */
}

/* Optional text style if you want to add a message */
.nwtteis-button-text {
  margin-bottom: 20px;
  color: #333;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* The link that wraps the button */
.nwtteis-button-link {
  display: inline-block; /* Changed to inline-block for better centering inside the box */
  text-decoration: none;
  width: 100%;
}

/* The main button */
.nwtteis-button {
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  /* Softer muted green gradient background */
  background: linear-gradient(135deg, #6c8c7d 0%, #4a6a57 100%);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.nwtteis-button:hover {
  background: linear-gradient(135deg, #4a6a57 0%, #6c8c7d 100%);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.nwtteis-button:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
  .nwtteis-button-text {
	  font-size: 1.3em;
  }
  .nwtteis-button {
	  padding: 12px 25px;
	  font-size: 1em;
  }
}

@media (max-width: 480px) {
	.nwtteis-button-box {
		padding: 20px;
	}
	.nwtteis-button-text {
		font-size: 1.1em;
	}
	.nwtteis-button {
		padding: 10px 20px;
		font-size: 0.9em;
		border-radius: 40px;
	}
}

/** Pop-up **/
/** referenced in nwtt.js **/
.nwtteis-popup {
    background-color: #F5F5F5;
    width: 450px;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
}
.nwtteis-popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #c5c5c5;
    border: none;
    outline: none;
    cursor: pointer;
}
.nwtteis-popup p{
    font-size: 14px;
    margin: 20px 0;
}

/* Sidebar Images */
.nwtteis-sidebar-image {
  display: block;
  margin: 0 auto; /* 0 for top/bottom, auto for left/right */
  max-width: 225px;
  border-style: solid;
  border-width: thin;
  border-color: gray;
}

/* Thumbnails */
.nwtteis-caption {
	color: #000000 !important; /* Replaces muted grey with dark charcoal */
}
